Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- cd "$(dirname "$0")"
- # Steam comatibility data for Monster Hunter World
- MWH_PATH_COMPDATA=~/.steam/steam/steamapps/compatdata/582010
- # Path to proton, lazy method, should work
- PROTON_PATH=$(cat $MWH_PATH_COMPDATA/config_info | head -n 2 | tail -n 1 | sed 's/files\/share\/fonts\///')
- # Path to steam installation
- STEAM_PATH=~/.steam/steam
- # Run HunterPie in MWH Steam environment
- STEAM_COMPAT_DATA_PATH=$MWH_PATH_COMPDATA \
- WINEPREFIX=$MWH_PATH_COMPDATA/pfx \
- STEAM_COMPAT_CLIENT_INSTALL_PATH=$STEAM_PATH \
- $PROTON_PATH/proton run \
- ./HunterPie.exe
Advertisement
Add Comment
Please, Sign In to add comment